home *** CD-ROM | disk | FTP | other *** search
- program DuckQuery;
-
- uses
- Forms,
- Main in 'Main.pas' {FormMain},
- Child in 'Child.pas' {FormChild},
- About in 'About.pas' {FormAbout};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.Title := 'Duck Query Editor';
- FormAbout := TFormAbout.Create (nil);
- FormAbout.NoButton;
- FormAbout.Show;
- FormAbout.Update;
- Application.CreateForm(TFormMain, FormMain);
- Application.Run;
- end.
-